-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace hackerFeaturesEnabled with featureSet #432
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code looks good, I'll test later
Co-authored-by: Dragorn421 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just this and it should be good
@@ -77,7 +84,7 @@ class OOT_Properties(bpy.types.PropertyGroup): | |||
"""Global OOT Scene Properties found under scene.fast64.oot""" | |||
|
|||
version: bpy.props.IntProperty(name="OOT_Properties Version", default=0) | |||
hackerFeaturesEnabled: bpy.props.BoolProperty(name="Enable HackerOOT Features") | |||
feature_set: bpy.props.EnumProperty(name="Feature Set", default="decomp", items=feature_set_enum) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feature_set: bpy.props.EnumProperty(name="Feature Set", default="decomp", items=feature_set_enum) | |
feature_set: bpy.props.EnumProperty(name="Feature Set", default="default", items=feature_set_enum) |
actually there's other places where it checks for "decomp" instead of "default" (changing enums can be annoying) |
No description provided.